html,body{height:100%;margin:0;padding:0}body{font-family:'Poppins',sans-serif;background-color:#fff;background-image:radial-gradient(#e6e6e6 1px,transparent 1px);background-size:20px 20px;color:#333;display:flex;justify-content:center;align-items:center;text-align:center;height:100vh;overflow:hidden;padding:1rem;box-sizing:border-box}main{max-width:600px;background-color:rgba(255,255,255,.9);padding:2rem;border-radius:15px;box-shadow:0 10px 30px rgba(0,0,0,.1);animation:fadeIn 1s ease-out forwards}img{width:100px;height:100px;margin-bottom:1.5rem;border-radius:15px;object-fit:cover;border:3px solid #FF2B6D;transition:transform .3s ease-in-out}img:hover{transform:scale(1.05)}h1{font-size:clamp(2rem,6vw,3.2rem);font-weight:700;color:#1a1a1a;margin:0 0 .8rem 0;line-height:1.2;letter-spacing:-.5px}p{font-size:clamp(1rem,3.5vw,1.3rem);font-weight:400;color:#555;margin:0 0 2.5rem 0;line-height:1.6}.cta{display:inline-block;background:linear-gradient(45deg,#FF2B6D,#FF7A3F);color:#fff;font-weight:700;text-decoration:none;padding:1rem 3rem;border-radius:50px;font-size:1.1rem;transition:all .3s ease-in-out;border:none;cursor:pointer;box-shadow:0 8px 20px rgba(255,43,109,.4)}.cta:hover,.cta:focus{transform:translateY(-3px);box-shadow:0 12px 25px rgba(255,43,109,.5);background:linear-gradient(45deg,#FF7A3F,#FF2B6D);outline:none}@keyframes fadeIn{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}